home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / Reuse / ReusableComponentsEx / ObjectEditor.wo / ObjectEditor.wod < prev    next >
Encoding:
Text File  |  1996-03-02  |  534 b   |  33 lines

  1. ////////////////////////
  2. //  ObjectEditor
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6.  
  7.  
  8. EditorTable: WOGenericContainer {
  9.     elementName = "table";
  10.     border = borderSize;
  11.     cellPadding=cellPadding;
  12.     cellSpacing=cellSpacing;
  13. };
  14.  
  15. EntryRepetition: WORepetition {
  16.     count = entryCount;
  17.     index = rowIndex;
  18. };
  19.  
  20. LabelCell: WOString {
  21.     value = labelString;
  22. };
  23.  
  24. ValueCell: ReadWriteString {
  25.     value = valueString;
  26.     fieldSize = fieldSize;
  27.     isEditable = isEditable;
  28. };
  29.  
  30. Comment: WOConditional {
  31.     condition = NO;
  32. };
  33.